# Slackware Linux removepkg completion


comp_include _get_cword


_removepkg()
{
    local packages cur

    COMPREPLY=()
    cur=`_get_cword`

    COMPREPLY=( $( (cd /var/log/packages && compgen -f -- "$cur") ) )
} # _removepkg()
